lib/deploy: Add semi-colon in post-deployment msg
authorJonathan Lebon <jonathan@jlebon.com>
Fri, 4 May 2018 14:13:13 +0000 (10:13 -0400)
committerAtomic Bot <atomic-devel@projectatomic.io>
Fri, 4 May 2018 14:51:07 +0000 (14:51 +0000)
Let's add a semi-colon between the "bootconfig swap" part and the
"deployment count change" to make it more clear they're separate
statements.

Closes: #1575
Approved by: cgwalters

src/libostree/ostree-sysroot-deploy.c

index 7830e830b795c3a56c9a945c8748724f07a70cf9..6f0f6efd93cc4385edff6cb9e50f90f7ba862814 100644 (file)
@@ -2352,7 +2352,7 @@ ostree_sysroot_write_deployments_with_options (OstreeSysroot     *self,
     }
 
   { g_autofree char *msg =
-      g_strdup_printf ("%s; bootconfig swap: %s deployment count change: %i",
+      g_strdup_printf ("%s; bootconfig swap: %s; deployment count change: %i",
                        (bootloader_is_atomic ? "Transaction complete" : "Bootloader updated"),
                        requires_new_bootversion ? "yes" : "no",
                        new_deployments->len - self->deployments->len);